home *** CD-ROM | disk | FTP | other *** search
/ TPUG - Toronto PET Users Group / TPUG Users Group CD / TPUG Users Group CD.iso / AMIGA / AMICUS / AMICUS17.ADF / Comm / Comm.patch < prev    next >
Text File  |  1989-01-27  |  3KB  |  79 lines

  1.                     Comm version 1.33  patch info.
  2.  
  3.  
  4. NOTE: The sector numbers and byte offsets given in this file are those
  5. supported by the NEWZAP program by John Hodgson.
  6.  
  7. -------------------
  8. DEFAULT PRIORITY
  9.  
  10.    When initializing, Comm sets it's priority to 1.  If you desire to change
  11.  this priority, at sector 1, byte offset 35 you will find the priority
  12.  value.  Do NOT set the priority value greater than the disk device (5) or
  13.  you will never be able to write file data to the disk when running Comm.
  14.    Negative numbers are acceptable.  FF = -1, FE = -2, etc.
  15.  
  16. -------------------
  17. DEFAULT BAUD RATE
  18.  
  19.      Comm uses the baud rate set in the system-configuration file as it's
  20.    default baud rate.  You may chose to have Comm initialize at 1200 baud
  21.    by changing the bytes in sector 1, offset 0CB through 0CD to 71 4E 71.
  22.      Initial patch baud rates other than 1200 are not supported.
  23.  
  24. --------------------
  25. SCREEN COLORS
  26.  
  27.    The screen colors used by Comm are normally those selected by the user
  28.  in Preferences.  Comm has an 8 byte patch area which allows the user to
  29.  over ride the default colors.  If the 8 bytes in this area are zeros,
  30.  Comm will use the default colors.  If non-zero, Comm will load the values
  31.  as a default color map.
  32.  
  33.    The patch area is located in sector 67 (dec), at byte offset 70 (hex)
  34.  and is organized as: color_0, color_1, color_2, color_3
  35.  
  36.         offset  xRGB            Usage                 (standard WB color)
  37. color_0   70    0000    Screen background color.      (BLUE)
  38. color_1   72    0000    Text color.                   (WHITE)
  39. color_2   74    0000    Not used.                     (BLACK)
  40. color_3   76    0000    Status line and Cursor color. (ORANGE)
  41.  
  42.    The RGB values are specified in the standard Amiga fashion.  Some
  43. examples:
  44.  
  45.    xRGB   color         xRGB   color           xRGB   color
  46.    0FFF  White          0D00  Brick Red        0F00  Red
  47.    0F90  Orange         0FF0  Lemon Yellow     08E0  Lime Green
  48.    00F0  Green          02C0  Dark Green       00BB  Blue Green
  49.    06FE  Sky Blue       000F  Blue             006D  Dark Blue
  50.    091F  Purple         0C1F  Violet           0F1F  Magenta
  51.    0FAC  Pink           0DB9  Tan              0C80  Brown
  52.    0A87  Dark Brown     0CCC  Light Grey       0999  Medium Grey
  53.    0000  Black
  54.  
  55. -------------------
  56. INPUT WINDOW LOCATION
  57.  
  58.    Comms INPUT WINDOW opens in the upper left hand corner of the screen.
  59. You may patch sector 81, offset 0F8-0F9 (a word) with the left edge position
  60. desired and offset 0FA-0FB (a word) with the top edge offset desired.
  61.  
  62. -------------------
  63. CURSOR KEY CODES
  64.  
  65.    Comm generates no output when the cursor keys are pressed.  You may
  66. assign byte values to the cursor keys and shifted cursor keys by patching
  67. the following locations in sector 
  68.  
  69.    Up    arrow  0EC       Shift Up    arrow  15C
  70.    Down  arrow  0ED       Shift Down  arrow  15D
  71.    Right arrow  0EE       Shift Right arrow  15E
  72.    Left  arrow  0EF       Shift Left  arrow  15F
  73.  
  74.    Comm expands byte codes 80 through 89 as function key F1 through F10
  75. and 8A through 93 for Shift F1 through Shift F10.  If you wish to have
  76. the cursor keys output multibyte code sequences, then set up a function
  77. key definition and patch it's code into the appropriate cursor key location.
  78.  
  79.